home *** CD-ROM | disk | FTP | other *** search
/ Click - International Series 1 / Click Jigsaw Puzzles: Ken Duncan.iso / mac / puzzles / BridalVeilFalls.dxr / 00224_movie start exitframe.ls < prev    next >
Encoding:
Text File  |  2002-11-11  |  730 b   |  24 lines

  1. global progressSprite, netID, puzzleTile, stageWide, stageTall, puzzPics, progressLeft, sponsor, isSWXtra, puzzleDay, puzzlePicID, puzzleBmpID, puzzleTxtID, currentPuzzle, puzzSpec, totalPieces, puzzShading, puzzMessage
  2.  
  3. on exitFrame
  4.   if netDone(netID) and frameReady() and member("nullpic").mediaReady then
  5.     sponsor = 0
  6.     aSprite = 241
  7.     repeat while aSprite <= 247
  8.       sprite(aSprite).loc = point(-9999, -9999)
  9.       aSprite = 1 + aSprite
  10.     end repeat
  11.     currentPuzzle = the movieName
  12.     aChar = 1
  13.     repeat while aChar <= 4
  14.       delete char length(currentPuzzle) of currentPuzzle
  15.       aChar = 1 + aChar
  16.     end repeat
  17.     updateStage()
  18.     makeSavedPuzzle()
  19.     initPuzzler()
  20.   else
  21.     go(#loop)
  22.   end if
  23. end
  24.